From: Paul Donald Date: Mon, 29 Sep 2025 14:00:57 +0000 (+0200) Subject: luci-mod-status: fix syslog warning (4) log level filter X-Git-Url: http://git.openwrt.org/%22https:/collectd.org/%22http:/www.crowdsec.net//%22https%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22https%22?a=commitdiff_plain;h=f53e99d2299f118df5a6eff60d101414d69d4912;p=project%2Fluci.git luci-mod-status: fix syslog warning (4) log level filter Closes #7967 the warning syslog level is internally denoted as 'warn'. Signed-off-by: Paul Donald --- diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js index a71f4d95e7..651188f12d 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js @@ -46,7 +46,7 @@ return view.extend({ ['1', 'alert', _('Alert')], ['2', 'crit', _('Critical')], ['3', 'err', _('Error')], - ['4', 'warning', _('Warning')], + ['4', 'warn', _('Warning')], ['5', 'notice', _('Notice')], ['6', 'info', _('Info')], ['7', 'debug', _('Debug')]